🛠 XPath IDE

📥 Дополнительные данные (кастомные сниппеты, URL, описание)
Можно комбинировать генерацию + клики по сниппетам + ручное редактирование
📍 Оси XPath
//любой потомок
/от корня
/descendant::все потомки
/ancestor::все предки
/parent::родитель
/following-sibling::след. братья
/preceding-sibling::пред. братья
/self::текущий
/descendant-or-self::потомки + себя
/ancestor-or-self::предки + себя
/following::после в документе
/preceding::до в документе
/attribute::атрибуты
🔗 Разное
//[@='']
//[contains(@,'')]
()
and
or
text()
last()
contains
[]
''
not()
🏷 Популярные теги
div
a
input
button
span
img
p
li
ul
form
h1
h2
label
select
option
table
tr
td
section
article
🎯 Популярные предикаты
[@class='' ]
[contains(@class,'')]
[text()='']
[contains(text(),'')]
[@href='' ]
[contains(@href,'')]
[@id='']
[@name='']
[@type='']
[@value='']
[@data-testid='']
[@aria-label='']
[@title='']
[@placeholder='']
[not(@disabled)]активный
[@checked]чекбокс
[position()=1]
[starts-with(@class,'')]
[ends-with(@class,'')]
[normalize-space()]
[string-length(...) > 0]не пустой
[(//*)[last()]]последний